home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / Tools / misc / t-conf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  841 b   |  41 lines

  1. /* t-conf.c: tests the Lib/pp/conf.c variables */
  2.  
  3. # ifndef lint
  4. static char Rcsid[] = "@(#)$Header: /xtel/pp/pp-beta/Tools/misc/RCS/t-conf.c,v 6.0 1991/12/18 20:30:40 jpo Rel $";
  5. # endif
  6.  
  7. /*
  8.  * $Header: /xtel/pp/pp-beta/Tools/misc/RCS/t-conf.c,v 6.0 1991/12/18 20:30:40 jpo Rel $
  9.  *
  10.  * $Log: t-conf.c,v $
  11.  * Revision 6.0  1991/12/18  20:30:40  jpo
  12.  * Release 6.0
  13.  *
  14.  */
  15.  
  16.  
  17.  
  18. #include <stdio.h>
  19.  
  20. extern char     *pptailor,
  21.         *cmddfldir,
  22.         *logdfldir,
  23.         *quedfldir,
  24.         *tbldfldir,
  25.         *niftpquedir,
  26.         *niftpcpf;
  27.  
  28.  
  29. main ()
  30. {
  31.     sys_init ("testconf");
  32.     printf ("tailor    = %s\n", pptailor);
  33.     printf ("cmddfldir = %s\n", cmddfldir);
  34.     printf ("logdfldir = %s\n", logdfldir);
  35.     printf ("quedfldir = %s\n", quedfldir);
  36.     printf ("tbldfldir = %s\n", tbldfldir);
  37.     printf ("niftpquedir = %s\n", niftpquedir);
  38.     printf ("niftpcpf = %s\n", niftpcpf);
  39.     return;
  40. }
  41.